* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
 
  overflow-x: hidden;
}



/* ————————————————————— */
/* GLOBAL OVERFLOW & BOX-SIZING FIXES */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;      /* hide horizontal overflow on mobile */
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

span{
  color: #007bff;
}


/*=== topbar ===*/
.topbar {
  background:black;
  position: sticky;
  top: 0;
  z-index: 1000;  
  width: 100%;
}


/*=== header ===*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background:pink ;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 50px;
  
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .logo h2 {
  margin: 0;
  font-size: 1.5rem;
  color:white;
}
.header .contact {
  text-align: right;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.header .contact .contact1{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.header .contact .contact1>p{
    margin: 0;
    line-height:1px;
    color: #555;
    font-weight: bold;
}
.header .contact .time>p{
    margin: 0;
    font-size:11px;
    line-height:1px;
    font-weight: bold;
    cursor: pointer;
    /* color:white; */
    color:white;
     /* Animation */
    animation: pulse-effect 2s ease-in-out infinite;
}
@keyframes pulse-effect {
  0% {
    transform: scale(1.10);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.header .contact a {
  color: rgb(36, 4, 4);
  text-decoration: none;
  transition: color 0.2s;
}
.header .contact a:hover {
  color:black;
}
.header .contact .time>p:hover{
    color: black;
}


/*=== navbar ===*/
.navBar {
  display: block;
  background: whitesmoke;
  border-top: 1px solid gold;
  padding: 10px;
  
}
.navBar .navLinks {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 80px;
}
.navBar .linkRight {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
}
.linkRight li {
  position: relative;
}
.linkRight li a {
  text-decoration: none;
  font-size: 1.03rem;
  color:black;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s, color 0.3s;
}
.linkRight li a:hover {
  /* background:white; */
  color:rgb(175, 6, 102);
}
.linkRight li.sign button {
  background: rgb(180, 7, 145);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: bold;
  box-sizing: border-box;
    /* Pulse animation */
  animation: pulse-btn 2s ease-in-out infinite;
}
/* @keyframes for pulse */
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.linkRight li.sign button:hover {
    background-color: yellowgreen;
    color: whitesmoke;
}


/*=== Dropdown menu ===*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5);
}
.dropdown-menu li a {
  display: block;
  color:black;
  margin-top:-22px;
  font-size:1rem;
}
/* Hamburger button styling */
.hamburger {
  display: none;
  font-size:2rem;
  color:black;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

/* Mobile / small-screen styles */
@media (max-width: 450px) {
  .header{
    height: 150px;
  }
  .header .contact {
    text-align: center;
    /* font-size: 0.8rem; */
    /* margin-top: 0.5rem; */
    display: flex;
    flex-direction: column;
  }
  .header .contact .contact1{
    display: flex;
    flex-direction: column;
  }
  .navBar {
    display: none;
    width: 100%;
  }
  .navBar.active {
    display: block;
    background:rgb(208, 205, 205);
  }
  .navBar .navLinks {
    padding: 1rem;
  }
  .navBar .linkRight {
    flex-direction: column;
    gap: 0;
  }
  .linkRight li {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
  }
  .linkRight li a {
    display: block;
    width: 100%;
    color:#007bff;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  .linkRight li.sign button {
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #007bff;
    margin-top: 0.5rem;
  }
    /* Ensure last items appear correctly */
  .linkRight li.sign,
  .linkRight li:last-child {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Make Contact Us button visible and spaced */
  .linkRight li.sign button {
    background: red;
    color: white;
    margin: 10px 0;
    width: 90%;
  }

  /* Style Log In link for better visibility */
  .linkRight li a[href*='Log In'] {
    color: white;
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  /* Allow scrolling if list is long */
  .navBar.active .linkRight {
    overflow-y: auto;
    max-height: 80vh;
    padding-bottom: 100px; /* space for button visibility */
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
  }
   /* .dropdown:hover .dropdown-menu {
    visibility: visible;
  }  */
  .dropdown-menu li a {
    color:black;
    padding-left: 2rem;
  }
  .hamburger{
    display: block;
  }
}



































































































































/* Haircare body styles - add to main stylesheet */
.hair-page { font-family: 'Segoe UI', Roboto, Arial, sans-serif; color:#222; }

/* HERO */
.hero-hero { padding: 40px 20px; background: linear-gradient(180deg,#fff 0,#fff 60%); }
.hero-inner { max-width:1200px; margin:0 auto; display:flex; gap:24px; align-items:center; flex-wrap:wrap; }
.hero-text { flex:1 1 360px; }
.hero-text h1 { font-size:2.1rem; margin:0 0 8px; }
.hero-text p { margin:0 0 16px; color:#555; }
.hero-cta .btn { margin-right:10px; }

/* media for hero image */
.hero-media { flex:1 1 420px; display:flex; justify-content:center; }
.hero-media img { width:50%; max-width:520px; height:auto; object-fit:cover; border-radius:10px; box-shadow:0 6px 20px rgba(0,0,0,0.08); }

/* buttons */
.btn { display:inline-block; padding:10px 16px; background:#111; color:#fff; text-decoration:none; border-radius:8px; }
.btn-outline { background:transparent; background-color: #d63c92; color:#111; border:2px solid #8d099e; }
.btn-primary-large { padding:12px 20px; background:#e11; color:#fff; border-radius:10px; text-decoration:none; }

/* SERVICES */
.services { padding:40px 20px; max-width:1200px; margin:0 auto; }
.services h2 { margin-bottom:18px; font-size:1.5rem; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; }
.service-card { background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 6px 18px rgba(0,0,0,0.05); padding-bottom:12px; text-align:left; }
.service-card img { width:100%; height:180px; object-fit:cover; display:block; }
.service-card h3 { margin:12px 12px 6px; font-size:1.05rem; }
.service-card p { margin:0 12px 8px; color:#666; font-size:.95rem; }
.service-card .price { display:inline-block; margin:0 12px 12px; color:#222; font-weight:600; }

/* SWATCHES */
.swatches { padding:30px 20px; background:#fafafa; border-top:1px solid #eee; border-bottom:1px solid #eee; text-align:center; }
.swatch-grid { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:12px; }
.swatch { width:48px; height:48px; border-radius:50%; border:2px solid #fff; box-shadow:0 4px 10px rgba(0,0,0,0.08); cursor:pointer; outline:none; }
.swatch:focus { box-shadow:0 0 0 4px rgba(0,0,0,0.06); }
.swatch-name { margin-top:12px; font-weight:600; color:#333; }

/* GALLERY */
.gallery { padding:30px 20px; max-width:1200px; margin:0 auto; }
.gallery-grid { display:grid; gap:8px; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); }
.gallery-item { width:100%; height:160px; object-fit:cover; display:block; border-radius:8px; cursor:pointer; transition:transform .18s ease; }
.gallery-item:active { transform:scale(.98); }

/* VIDEO */
.video { padding:30px 20px; max-width:1000px; margin:0 auto; }
.video-wrapper { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:8px; box-shadow:0 8px 24px rgba(0,0,0,0.06); }
.video-wrapper iframe { position:absolute; left:0; top:0; width:100%; height:100%; border:0; }

/* TESTIMONIALS */
.testimonials { padding:30px 20px; max-width:900px; margin:0 auto; text-align:center; }
.testi-slider { position:relative; overflow:hidden; min-height:120px; }
.testi-slide { display:none; padding:14px; }
.testi-slide.active { display:block; animation:fadeIn .4s ease; }
@keyframes fadeIn { from {opacity:0; transform:translateY(8px)} to {opacity:1; transform:none} }

/* BOOKING CTA */
.booking { padding:28px 20px; background:linear-gradient(90deg,#fff 0,#fff 60%); border-top:1px solid #eee; }
.booking-inner { max-width:1100px; margin:0 auto; display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap; padding:8px 0; }

/* MODAL */
.img-modal { position:fixed; inset:0; background:rgba(0,0,0,0.75); display:flex; align-items:center; justify-content:center; z-index:9999; padding:24px; opacity:0; pointer-events:none; transition:opacity .18s ease; }
.img-modal.open { opacity:1; pointer-events:auto; }
.img-modal img { max-width:95%; max-height:85vh; border-radius:8px; box-shadow:0 8px 30px rgba(0,0,0,0.6); }
.modal-close { position:absolute; top:20px; right:22px; background:transparent; color:#fff; border:0; font-size:34px; cursor:pointer; }

/* small screens */
@media (max-width:720px) {
  .hero-inner { padding:12px; }
  .hero-text h1 { font-size:1.6rem; }
  .hero-media img { max-width:100%; height:auto; }
  .gallery-item { height:120px; }
  .service-card img { height:140px; }
}
















































footer{
  background: #f9f3fa;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid #ff9ed8;
}

.footer-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Logo Section */
.footer-logo h2{
  color: #e35aa8;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo p{
  color: #555;
  line-height: 26px;
}

/* Links */
.footer-links h3{
  color: #d63c92;
  margin-bottom: 18px;
  font-size: 20px;
}

.footer-links ul{
  list-style: none;
  padding: 0;
}

.footer-links ul li{
  margin-bottom: 12px;
}

.footer-links ul li a{
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.footer-links ul li a:hover{
  color: #d63c92;
  padding-left: 5px;
}

/* Newsletter */
.newsletter h3{
  color: #d63c92;
  margin-bottom: 18px;
}

.newsletter input{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.newsletter button{
  width: 100%;
  padding: 12px;
  background: #e35aa8;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.newsletter button:hover{
  background: #d63c92;
}

/* Social Icons */
.social{
  margin-top: 15px;
}

.social a{
  display: inline-block;
  margin-right: 12px;
  color: #e35aa8;
  font-size: 22px;
  transition: 0.3s;
}

.social a:hover{
  color: #d63c92;
}

/* Bottom Bar */
.bottom-footer{
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 15px;
}